RenderGameOverlayEvent

This event is called when the HUD (game overlay) is being rendered.

It is split into Pre and Post.

Inheritors

Types

Link copied to clipboard
class Post(val partialTicks: Float) : RenderGameOverlayEvent

This is called after the game overlay renders, and should be used to draw whatever HUD components your mod needs.

Link copied to clipboard
class Pre(val partialTicks: Float) : RenderGameOverlayEvent

This is called before the game overlay renders, and should be used if you want to draw to the screen without drawing over the HUD.

Properties

Link copied to clipboard